From 8ee1620a2c78ee71c21ad11d305b2f565027d66c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sun, 24 Mar 2019 23:09:48 -0400 Subject: [PATCH] Remove gdk_surface_get_root_coords as public api We still need to keep the vfunc around, since the fallback implementation for move_to_rect uses it. So, a GDK backend must either have root coordinates or implement move_to_rect. --- docs/reference/gdk/gdk4-sections.txt | 1 - gdk/gdkinternals.h | 5 +++++ gdk/gdksurface.h | 6 ------ 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/reference/gdk/gdk4-sections.txt b/docs/reference/gdk/gdk4-sections.txt index 9fde1ae280..bdd16ba830 100644 --- a/docs/reference/gdk/gdk4-sections.txt +++ b/docs/reference/gdk/gdk4-sections.txt @@ -264,7 +264,6 @@ gdk_surface_get_position gdk_surface_get_root_origin gdk_surface_get_frame_extents gdk_surface_get_origin -gdk_surface_get_root_coords gdk_surface_get_device_position GdkModifierType GdkModifierIntent diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h index 1f91c1dd47..8f89e08067 100644 --- a/gdk/gdkinternals.h +++ b/gdk/gdkinternals.h @@ -341,6 +341,11 @@ GdkGrabStatus gdk_device_grab (GdkDevice *device, guint32 time_); void gdk_device_ungrab (GdkDevice *device, guint32 time_); +void gdk_surface_get_root_coords (GdkSurface *surface, + gint x, + gint y, + gint *root_x, + gint *root_y); G_END_DECLS diff --git a/gdk/gdksurface.h b/gdk/gdksurface.h index 2ff71e62a6..3249810156 100644 --- a/gdk/gdksurface.h +++ b/gdk/gdksurface.h @@ -597,12 +597,6 @@ gint gdk_surface_get_origin (GdkSurface *surface, gint *x, gint *y); GDK_AVAILABLE_IN_ALL -void gdk_surface_get_root_coords (GdkSurface *surface, - gint x, - gint y, - gint *root_x, - gint *root_y); -GDK_AVAILABLE_IN_ALL void gdk_surface_get_root_origin (GdkSurface *surface, gint *x, gint *y); -- 2.30.2